This function returns the tiling code, tiling rank, and tiling dimensions for a given field.
Note: Array ordering of variables used or returned by this routine changed in IDL 5.5. Programs written for versions of this routine prior to IDL 5.5 may need to be modified to work correctly with the current version..
Result = EOS_GD_TILEINFO(gridID, fieldname, tilecode, tilerank, tiledims)
Returns SUCCEED(0) if successful and FAIL(–1) otherwise.
Grid id (long) returned by EOS_GD_CREATE or EOS_GD_ATTACH.
Fieldname (string).
A named variable that will contain the tile code (long): 0 No Tile, 1 Tile.
A named variable that will contain the number of tile dimensions (long).
A named variable that will contain the tile dimensions (long).
None
To retrieve the tiling information about the Pressure field defined in the EOS_GD_DEFTILE section:
status = EOS_GD_COMPINFO(gridID, "Pressure", tilecode, $
tilerank, tiledims)
5.2 |
Introduced |